Q3Mesh_GetEdgeVertices
You can use theQ3Mesh_GetEdgeVertices
function to get the vertices of a mesh edge.
TQ3Status Q3Mesh_GetEdgeVertices ( TQ3GeometryObject mesh, TQ3MeshEdge edge, TQ3MeshVertex *vertex1, TQ3MeshVertex *vertex2);
mesh
- A mesh.
edge
- A mesh edge.
vertex1
- On exit, the first vertex of the specified mesh edge.
vertex2
- On exit, the second vertex of the specified mesh edge.
DESCRIPTION
TheQ3Mesh_GetEdgeVertices
function returns, in thevertex1
andvertex2
parameters, the two vertices of the mesh edge specified by themesh
andedge
parameters.